Contribution org.nuxeo.ecm.platform.picture.commandline.imagemagick--command
org.nuxeo.ecm.platform.picture.commandline.imagemagick
inside nuxeo-platform-imaging-core-6.0.jar
This contribution is part of XML component Extension Point
Extension point command of component CommandLineExecutorComponent.Contributed Items
XML Source
<extension point="command" target="org.nuxeo.ecm.platform.commandline.executor.service.CommandLineExecutorComponent">
<command enabled="true" name="identify">
<commandLine>identify</commandLine>
<parameterString>-quiet -ping -format '%m %w %h %z %[colorspace]' #{inputFilePath}[0]</parameterString>
<winParameterString>-quiet -ping -format "%m %w %h %z %[colorspace]" #{inputFilePath}[0]</winParameterString>
<installationDirective>You need to install ImageMagic.</installationDirective>
</command>
<command enabled="true" name="crop">
<commandLine>stream</commandLine>
<parameterString>-quiet -map rgb -storage-type char -extract #{tileWidth}x#{tileHeight}+#{offsetX}+#{offsetY} #{inputFilePath}[0] - | convert -depth 8 -size #{tileWidth}x#{tileHeight} rgb:- #{outputFilePath}</parameterString>
<winParameterString>-quiet -map rgb -storage-type char -extract #{tileWidth}x#{tileHeight}+#{offsetX}+#{offsetY} #{inputFilePath}[0] - | convert -depth 8 -size #{tileWidth}x#{tileHeight} rgb:- #{outputFilePath}</winParameterString>
<installationDirective>You need to install ImageMagic.</installationDirective>
</command>
<command enabled="true" name="resizer">
<commandLine>convert</commandLine>
<parameterString>-quiet -depth #{targetDepth} #{inputFilePath}[0] jpg:- | convert - -resize #{targetWidth}x#{targetHeight} #{outputFilePath}</parameterString>
<winParameterString>-quiet -depth #{targetDepth} #{inputFilePath}[0] -resize #{targetWidth}x#{targetHeight} #{outputFilePath}</winParameterString>
<installationDirective>You need to install ImageMagic.</installationDirective>
</command>
<command enabled="true" name="gifResizer">
<commandLine>convert</commandLine>
<parameterString>-quiet -depth #{targetDept h} #{inputFilePath}[0] -coalesce -resize #{targetWidth}x#{targetHeight} -deconstruct #{outputFilePath}</parameterString>
<installationDirective>You need to install ImageMagic.</installationDirective>
</command>
<command enabled="true" name="rotate">
<commandLine>convert</commandLine>
<parameterString>-quiet #{inputFilePath}[0] -rotate #{angle} #{outputFilePath}</parameterString>
<winParameterString>-quiet #{inputFilePath}[0] -rotate #{angle} #{outputFilePath}</winParameterString>
<installationDirective>You need to install ImageMagic.</installationDirective>
</command>
<command enabled="true" name="cropAndResize">
<commandLine>stream</commandLine>
<parameterString>-quiet -map #{mapComponents} -storage-type char -extract #{tileWidth}x#{tileHeight}+#{offsetX}+#{offsetY} #{inputFilePath}[0] - | convert -depth 8 -size #{tileWidth}x#{tileHeight} -resize #{targetWidth}x#{targetHeight}! #{mapComponents}:- #{outputFilePath}</parameterString>
<installationDirective>You need to install ImageMagic.</installationDirective>
</command>
<command enabled="true" name="converter">
<commandLine>convert</commandLine>
<parameterString>-quiet #{inputFilePath}[0] #{outputFilePath}</parameterString>
<winParameterString>-quiet #{inputFilePath}[0] #{outputFilePath}</winParameterString>
<installationDirective>You need to install ImageMagic.</installationDirective>
</command>
<command enabled="true" name="multiTiler">
<commandLine>convert</commandLine>
<parameterString>-quiet #{inputFilePath}[0] -crop #{tileWidth}x#{tileHeight} +repage #{outputFilePath}</parameterString>
<installationDirective>You need to install ImageMagic.</installationDirective>
</command>
</extension>